home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be)
- *
- * File : bool.h
- *
- * Description : Macros defining the boolean type
- * with values TRUE or FALSE
- *
- */
-
-
-
- #if ! true
- # define true 1
- #endif
-
- #if ! True
- # define True 1
- #endif
-
- #if ! TRUE
- # define TRUE 1
- #endif
-
- #if ! false
- # define false 0
- #endif
-
- #if ! False
- # define False 0
- #endif
-
- #if ! FALSE
- # define FALSE 0
- #endif
-